固定長データの読込

固定長形式のテキストデータをRで読み込む

# 作業ディレクトリに固定長のtestdata.txtを作成
# 内容は1行10列のデータ「0123456789」
cat(file = paste(getwd(), "/testdata.txt", sep = ""), "1234567890", "\n")

# 列幅を2,3,5で固定長データを読込
d <- read.fwf("testdata.txt", width = c(2, 3, 5), col.names = c("x", "y", "z"))
d
##    x   y     z
## 1 12 345 67890